home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / NotDirectoryException.java < prev    next >
Text File  |  1998-09-08  |  337b  |  20 lines

  1. package com.symantec.itools.io;
  2.  
  3.  
  4. import java.io.IOException;
  5.  
  6.  
  7. /**
  8.  * @author Symantec Internet Tools Division
  9.  * @version 1.0
  10.  * @since VCafe 3.0
  11.  */
  12.  
  13. public class NotDirectoryException
  14.     extends IOException
  15. {
  16.     public NotDirectoryException(String name)
  17.     {
  18.         super(name + " is not a directory");
  19.     }
  20. }